This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<tr> | |
<td colspan="7"> | |
<img style="display:block" src="http://www.adsmart360.net/webcontent/report-email/weekly-report/images/index_94.png" width="341" alt=""> | |
</td> | |
<td colspan="10" rowspan="5"> | |
<img style="display:block" src="http://www.adsmart360.net/webcontent/report-email/weekly-report/images/index_95.png" width="276" alt=""> | |
</td> | |
<td> | |
<img style="display:block" src="http://www.adsmart360.net/webcontent/report-email/weekly-report/images/index_96.png" width="66" alt=""> | |
</td> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class BookInStock | |
attr_reader :isbn | |
attr_accessor :price | |
def initialize(isbn, price) | |
@isbn = isbn | |
@price = Float(price) | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DataContract(Namespace = @"http://schemas.adtrak360.com/data")] | |
public class CorporateGrid | |
{ | |
[DataMember] | |
public List<string> Columns { get; set; } | |
[DataMember] | |
public List<CorporateGridRow> Rows { get; set; } | |
} | |
[DataContract(Namespace = @"http://schemas.adtrak360.com/data")] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DataContract(Namespace = @"http://schemas.adtrak360.com/data")] | |
public class BudgetReportResponse : ServiceResponse | |
{ | |
// Removed Categories | |
// Changed MediaChart to BudgetByMediaChart | |
// Changed RegionChart to BudgetByAccountChart | |
// Replaced BudgetByRegion with Grid | |
[DataMember] | |
public decimal TotalBudget { get; set; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DataContract(Namespace = @"http://schemas.adtrak360.com/data")] | |
public class LeadsReportResponse : ServiceResponse | |
{ | |
// Removed BudgetByRegion -- Added GridItems in its place with just the data you need for the chart | |
// Removed Categories - Didn't see a need for it | |
// Renamed FranchiseMap to CallMap | |
// Renamed LeadsByRegionChart to LeadsByAccountChart | |
// Renamed LeadsByTypeChart to LeadsByMediaChart |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DataContract(Namespace = @"http://schemas.adtrak360.com/data")] | |
public class LeadsReportResponse : ServiceResponse | |
{ | |
// Removed BudgetByRegion -- Added GridItems in its place with just the data you need for the chart | |
// Removed Categories - Didn't see a need for it | |
// Renamed FranchiseMap to CallMap | |
// Renamed LeadsByRegionChart to LeadsByAccountChart | |
// Renamed LeadsByTypeChart to LeadsByMediaChart |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ((x == null) || (y == null)) | |
{ | |
return false; | |
} | |
else if (x.AdTrakAccountId.Equals(y.AdTrakAccountId)) | |
{ | |
return true; | |
} | |
else | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.well.sidebar-nav | |
ul.nav.nav-list | |
each section in nav | |
li.nav-header= section.title | |
each link in section.sections | |
if (link.active) | |
li.active | |
a(href="#")= link.name | |
else | |
li |
NewerOlder