Skip to content

Instantly share code, notes, and snippets.

@brianengel
brianengel / _.md
Created October 4, 2012 15:45
just another inlet to tributary
<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>
class BookInStock
attr_reader :isbn
attr_accessor :price
def initialize(isbn, price)
@isbn = isbn
@price = Float(price)
end
end

Email

  • email

First Name

  • adtrak360.first name
  • adtrak360.firstname
  • leadnotice.first name
  • leadnotice.firstname
  • first name
  • firstname
[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")]
[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; }
[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
[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
if ((x == null) || (y == null))
{
return false;
}
else if (x.AdTrakAccountId.Equals(y.AdTrakAccountId))
{
return true;
}
else
{
.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