Skip to content

Instantly share code, notes, and snippets.

View dustyhoppe's full-sized avatar

Dusty Hoppe dustyhoppe

View GitHub Profile
@dustyhoppe
dustyhoppe / Sample Contract - Software Deliverable
Created December 18, 2017 13:13 — forked from jboeke/Sample Contract - Software Deliverable
Sample Contract - Software Deliverable
## For educational purposes only! Not a substitute for individualized advice from a qualified legal practitioner. ##
SOFTWARE CONSULTING AGREEMENT
THIS AGREEMENT is entered into on <contract date> by and between Avie, LLC, (hereinafter "Developer") and <client company>, (hereinafter "Company").
RECITALS
WHEREAS, Company wishes to retain Developer to develop certain <software type> software (hereinafter defined and referred to as “Software”); and
DECLARE @AccountID INT = 11, @UserID INT = NULL, @GroupID INT = NULL;
declare @Users table (UserID int primary key clustered (UserID));
declare @HaveUsers bit = 1;
if @UserID is not null
insert into @Users (UserID) values (@UserID)
else if @GroupID is not null
insert into @Users (UserID)
CREATE PROCEDURE [dbo].[UserOwnershipTranferController]
AS
BEGIN
DECLARE @Jobs TABLE
(
ROW_ID INT,
AccountID INT,
TransferID INT
public static decimal AdjustedFee(this Entities.Placement p, AccountFeeCalculation feeCalculations)
{
if (p.PlacementType == Contracts.PlacementType.Permanent.ToString() || p.RateType == FeeRateType.FixedFee.ToString())
{
return p.PermanentFee;
}
else
{
decimal timeUnit = p.ContractTimePerWeek;
decimal marginRate = 0.0m;