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
USE [NewBusiness] | |
GO | |
/****** Object: StoredProcedure [dbo].[usp_CashOfferSELECTNew] Script Date: 04/17/2012 14:53:58 ******/ | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON | |
GO |
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
//scheduled trigger - one of execution | |
public class ScheduledTrigger : ITrigger | |
{ | |
public ScheduledTrigger() { } | |
public ScheduledTrigger(DateTime date) | |
{ | |
Date = date; | |
} |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using System.Web.Mvc; | |
using BackOffice.WebUI.Controllers.Base; | |
using Watchfinder.Commands.Marketing.Channels; | |
using Watchfinder.Reads.Marketing; | |
using Watchfinder.Reads.Marketing.Views; |
NewerOlder